home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / rmdir.c < prev    next >
C/C++ Source or Header  |  1988-06-19  |  1KB  |  51 lines

  1. /* 
  2.  * rmdir.c --
  3.  *
  4.  *    Procedure to map from Unix rmdir system call to Sprite.
  5.  *
  6.  * Copyright (C) 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: rmdir.c,v 1.1 88/06/19 14:31:54 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "fs.h"
  16. #include "compatInt.h"
  17. #include <sys/file.h>
  18.  
  19.  
  20. /*
  21.  *----------------------------------------------------------------------
  22.  *
  23.  * rmdir --
  24.  *
  25.  *    Procedure to map from Unix rmdir system call to Sprite Fs_RemoveDir.
  26.  *
  27.  * Results:
  28.  *    UNIX_ERROR is returned upon error, with the actual error code
  29.  *    stored in errno.  Othewise UNIX_SUCCESS is returned.
  30.  *
  31.  * Side effects:
  32.  *    None.
  33.  *
  34.  *----------------------------------------------------------------------
  35.  */
  36.  
  37. int
  38. rmdir(pathName)
  39.     char *pathName;        /* The name of the directoy to remove */
  40. {
  41.     ReturnStatus status;    /* result returned by Fs_RemoveDir */
  42.  
  43.     status = Fs_RemoveDir(pathName);
  44.     if (status != SUCCESS) {
  45.     errno = Compat_MapCode(status);
  46.     return(UNIX_ERROR);
  47.     } else {
  48.     return(UNIX_SUCCESS);
  49.     }
  50. }
  51.